home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / Me-Mz / Mike's Externals.cpt / Mike's Externals / card_4791.txt < prev    next >
Text File  |  1990-02-22  |  872b  |  35 lines

  1. -- card: 4791 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 2764
  5. -- name: 
  6.  
  7.  
  8. -- part contents for background part 17
  9. ----- text -----
  10. SubStr
  11.  
  12. -- part contents for background part 18
  13. ----- text -----
  14. Jon Wind
  15.  
  16. -- part contents for background part 19
  17. ----- text -----
  18. XFCN
  19.  
  20. -- part contents for background part 20
  21. ----- text -----
  22. SubStr("string",startPosition,numberOfChars)
  23.  
  24. -- part contents for background part 21
  25. ----- text -----
  26. Use this to get only a portion of a string at a time.  Handy if you need to look at one character at a time within a string.  This is eqivalent to Pascal's Copy function and BASIC's MID$.
  27.  
  28. -- part contents for background part 23
  29. ----- text -----
  30. put substr("Mike Gleason",1,4) into firstname
  31.  
  32. repeat with x=1 to length of firstname
  33.   put substr(firstname,x,1) into char
  34.   if char="i" then play "Harpsichord"
  35. end repeat